zcatalyst-cli
Version:
Command Line Tool for CATALYST
22 lines (21 loc) • 406 B
TypeScript
interface IAUTH_Secret {
id: string;
secret: string;
}
export default class AUTH {
static _web: {
[]: {
id: string;
secret: string;
};
};
static _mobile: {
[]: {
id: string;
secret: string;
};
};
static get web(): IAUTH_Secret;
static get mobile(): IAUTH_Secret;
}
export {};