b14063fe06
Re add prettier in eslint.configs
17 lines
380 B
TypeScript
17 lines
380 B
TypeScript
import { type Gate } from 'src/engine/twenty-orm/interfaces/gate.interface';
|
|
|
|
export interface WorkspaceExtendedEntityMetadataArgs {
|
|
/**
|
|
* Class to which table is applied.
|
|
* Function target is a table defined in the class.
|
|
* String target is a table defined in a json schema.
|
|
*/
|
|
|
|
readonly target: Function;
|
|
|
|
/**
|
|
* Entity gate.
|
|
*/
|
|
readonly gate?: Gate;
|
|
}
|