UNPKG

zcatalyst-cli

Version:

Command Line Tool for CATALYST

22 lines (21 loc) 406 B
interface IAUTH_Secret { id: string; secret: string; } export default class AUTH { static _web: { [x: string]: { id: string; secret: string; }; }; static _mobile: { [x: string]: { id: string; secret: string; }; }; static get web(): IAUTH_Secret; static get mobile(): IAUTH_Secret; } export {};