mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
|
// A collection of preferences related to a user or org (or combination).
|
||
|
export interface Prefs {
|
||
|
// TODO replace this with real preferences.
|
||
|
placeholder?: string;
|
||
|
}
|
||
|
|
||
|
export type UserPrefs = Prefs;
|
||
|
export type UserOrgPrefs = Prefs;
|
||
|
export type OrgPrefs = Prefs;
|