|
@@ -82,11 +82,13 @@ export type IdlField = {
|
|
|
|
|
|
export type IdlTypeDef = {
|
|
export type IdlTypeDef = {
|
|
name: string;
|
|
name: string;
|
|
|
|
+ docs?: string[];
|
|
type: IdlTypeDefTy;
|
|
type: IdlTypeDefTy;
|
|
};
|
|
};
|
|
|
|
|
|
export type IdlAccountDef = {
|
|
export type IdlAccountDef = {
|
|
name: string;
|
|
name: string;
|
|
|
|
+ docs?: string[];
|
|
type: IdlTypeDefTyStruct;
|
|
type: IdlTypeDefTyStruct;
|
|
};
|
|
};
|
|
|
|
|