solana/web3.js/flow-typed/superstruct.js

14 lines
238 B
JavaScript
Raw Normal View History

2018-08-23 10:52:48 -07:00
declare module 'superstruct' {
declare type StructFunc = {
(any): any,
union(schema: any): any;
list(schema: any): any;
literal(schema: any): any;
};
2018-08-23 10:52:48 -07:00
declare module.exports: {
struct: StructFunc;
2018-08-23 10:52:48 -07:00
}
}