forest-cli
Version:
The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.
18 lines • 400 B
TypeScript
export = applicationTokenDeserializer;
/**
* @typedef {{
* id: string;
* name: string;
* token: string;
* }} ApplicationToken
*/
declare const applicationTokenDeserializer: any;
declare namespace applicationTokenDeserializer {
export { ApplicationToken };
}
type ApplicationToken = {
id: string;
name: string;
token: string;
};
//# sourceMappingURL=application-token.d.ts.map