INNER CODE UNIT · TypeScript
App
modal-labs/modal-client · js/src/app.ts:88
export class App {
readonly appId: string;
readonly name?: string;
readonly environmentName?: string;
/** @ignore */
constructor(appId: string, name?: string, environmentName?: string) {
this.appId = appId;
this.name = name;
this.environmentName = environmentName;
}
}