You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
664 B
26 lines
664 B
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
// This file was almost autogenerated by cuetsy.
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
export const modelVersion = Object.freeze([0, 0]);
|
|
|
|
export interface PanelOptions {
|
|
folderId?: number;
|
|
maxItems: number;
|
|
query: string;
|
|
showHeadings: boolean;
|
|
showRecentlyViewed: boolean;
|
|
showSearch: boolean;
|
|
showStarred: boolean;
|
|
tags: string[];
|
|
}
|
|
|
|
export const defaultPanelOptions: PanelOptions = {
|
|
maxItems: 10,
|
|
query: '',
|
|
showHeadings: true,
|
|
showRecentlyViewed: false,
|
|
showSearch: false,
|
|
showStarred: true,
|
|
tags: [],
|
|
};
|
|
|