sdk

Radroots SDK and bindings
git clone https://radroots.dev/git/sdk.git
Log | Files | Refs | README

types.ts (245B)


      1 // @generated by cargo xtask generate ts
      2 // Do not edit by hand.
      3 export type IError<T> = { err: T, };
      4 
      5 export type IResult<T> = { result: T, };
      6 
      7 export type IResultList<T> = { results: Array<T>, };
      8 
      9 export type IResultPass = { pass: boolean, };