10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
/// <reference types="node" />
|
||
|
export declare function check(script: Buffer | Array<number | Buffer>): boolean;
|
||
|
export declare namespace check {
|
||
|
var toJSON: () => string;
|
||
|
}
|
||
|
declare const output: {
|
||
|
check: typeof check;
|
||
|
};
|
||
|
export { output };
|