mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
add server to monorepo.
This commit is contained in:
22
packages/server/src/interfaces/Resource.ts
Normal file
22
packages/server/src/interfaces/Resource.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user