@altostra/core
Version:
Core library for shared types and logic
14 lines (13 loc) • 381 B
TypeScript
export declare type Owner = Organization | User;
export declare class User {
readonly userId: string;
readonly type = "owner.user";
constructor(userId: string);
toString(): string;
}
export declare class Organization {
readonly organizationId: string;
readonly type = "owner.organization";
constructor(organizationId: string);
toString(): string;
}