mirror of
https://github.com/docmost/docmost.git
synced 2026-07-25 08:04:44 +10:00
feat(base): add client formula type literals
This commit is contained in:
@@ -13,7 +13,8 @@ export type BasePropertyType =
|
||||
| 'email'
|
||||
| 'createdAt'
|
||||
| 'lastEditedAt'
|
||||
| 'lastEditedBy';
|
||||
| 'lastEditedBy'
|
||||
| 'formula';
|
||||
|
||||
export type Choice = {
|
||||
id: string;
|
||||
@@ -310,3 +311,11 @@ export type BaseViewDraft = {
|
||||
// ISO timestamp written on each put; diagnostic only, not read by logic.
|
||||
updatedAt: string;
|
||||
};
|
||||
|
||||
export type {
|
||||
FormulaTypeOptions,
|
||||
FormulaResultType,
|
||||
ErrorCell as FormulaErrorCell,
|
||||
ErrorCode as FormulaErrorCode,
|
||||
} from "@docmost/base-formula/client";
|
||||
export { isErrorCell as isFormulaErrorCell } from "@docmost/base-formula/client";
|
||||
|
||||
Reference in New Issue
Block a user