pzp-sdk/declarations/secret-stack.d.ts

12 lines
244 B
TypeScript

declare module 'secret-stack/bare' {
interface Stack {
use(module: any): Stack
call(a: null, config: unknown)
}
function SecretStack(config?: unknown): Stack
export = SecretStack
}
declare module 'secret-stack/plugins/net' {
}