123456789101112131415161718192021222324252627 |
- import type from './organization';
- export function assert(_value: unknown): asserts _value
- export function assertType<Type>(_value: unknown): asserts _value is Type
- export function isNotSharedOrganization(
- maybe: Organization | SharedViewOrganization
- ): maybe is Organization
- export type DeepPartial<T> = T extends object
- ?
- : T;
|