@altostra/core
Version:
Core library for shared types and logic
8 lines (7 loc) • 352 B
TypeScript
import type { ResourceBase } from "./Common";
export declare type Auth0ApplicationType = 'resource.auth0.application';
export interface Auth0Application extends ResourceBase {
type: Auth0ApplicationType;
clientId: string;
}
export declare const isAuth0Application: import("@altostra/type-validations").ObjectOfTypeValidation<Auth0Application>;