7 lines
76 B
TypeScript
7 lines
76 B
TypeScript
type Tenant = {
|
|
tenant_id: string,
|
|
account: string
|
|
}
|
|
|
|
export { Tenant }
|