@chainwayxyz/phase2cli
Version:
All-in-one interactive command-line for interfacing with zkSNARK Phase 2 Trusted Setup ceremonies
17 lines (14 loc) • 357 B
TypeScript
declare module "conf" {
export interface ConfOptions {
projectName: string
schema: object
}
export class Conf {
constructor(options: ConfOptions)
get(key: string): any
set(key: string, value: any): void
delete(key: string): void
has(key: string): boolean
}
export default Conf
}