mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 11:20:31 +00:00
22 lines
366 B
TypeScript
22 lines
366 B
TypeScript
|
|
|
|
export interface IResource {
|
|
id: number,
|
|
key: string,
|
|
}
|
|
|
|
export interface IResourceField {
|
|
labelName: string,
|
|
key: string,
|
|
dataType: string,
|
|
helpText?: string | null,
|
|
default?: string,
|
|
predefined: boolean,
|
|
active: boolean,
|
|
builtin: boolean,
|
|
columnable: boolean,
|
|
index: number,
|
|
dataResource: string,
|
|
resourceId: number,
|
|
options: any;
|
|
} |