Files
cody-crm/frontend/packages/lib-shared/models/view.ts
wangziqi 72e2110987
Some checks failed
Synchronize to Gitee / repo-sync (push) Has been cancelled
Typos Checking / Spell Check with Typos (push) Has been cancelled
chore: initial commit
2026-06-23 11:56:23 +08:00

16 lines
359 B
TypeScript

import type { FilterForm, FilterResult } from '@cordys/web/src/components/pure/crm-advance-filter/type';
export interface ViewParams extends FilterResult {
id?: string;
name: string;
}
export interface ViewItem extends FilterForm {
id: string;
name: string;
fixed: boolean;
enable: boolean;
type?: string;
optionMap?: Record<string, any>;
}