@fuel-ts/abi-typegen
Version:
Generates Typescript definitions from Sway ABI Json files
12 lines • 328 B
TypeScript
export interface IRawAbiTypeRoot {
type: string;
typeId: number;
components: null | IRawAbiTypeComponent[];
typeParameters: null | number[];
}
export interface IRawAbiTypeComponent {
name: string;
type: number;
typeArguments: null | IRawAbiTypeComponent[];
}
//# sourceMappingURL=IRawAbiType.d.ts.map