solana/web3.js/flow-typed/superstruct.js
2020-06-14 21:57:04 -07:00

14 lines
268 B
JavaScript

declare module 'superstruct' {
declare type StructFunc = {
(any): any,
union(schema: any): any;
list(schema: any): any;
literal(schema: any): any;
tuple(schema: any): any;
};
declare module.exports: {
struct: StructFunc;
}
}