mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
export enum Features {
|
|
WAREHOUSES = 'warehouses',
|
|
BRANCHES = 'branches',
|
|
}
|
|
|
|
export interface IFeatureAllItem {
|
|
name: string;
|
|
isAccessible: boolean;
|
|
defaultAccessible: boolean;
|
|
}
|
|
|
|
export interface IFeatureConfiugration {
|
|
name: string;
|
|
defaultValue?: boolean;
|
|
}
|