mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-26 17:04:07 +01:00
This commit is contained in:
parent
90c23714fb
commit
5015a0b31f
2 changed files with 35 additions and 5 deletions
14
app/src/types/index.d.ts
vendored
14
app/src/types/index.d.ts
vendored
|
|
@ -814,7 +814,7 @@ interface IBazaarItem {
|
|||
interface IAV {
|
||||
id: string;
|
||||
name: string;
|
||||
view: IAVTable;
|
||||
view: IAVTable | IAVGallery;
|
||||
viewID: string;
|
||||
viewType: string;
|
||||
views: IAVView[];
|
||||
|
|
@ -827,7 +827,7 @@ interface IAVView {
|
|||
type: string;
|
||||
icon: string;
|
||||
hideAttrViewName: boolean;
|
||||
pageSize: number;
|
||||
pageSize: number,
|
||||
}
|
||||
|
||||
interface IAVTable extends IAVView {
|
||||
|
|
@ -836,7 +836,15 @@ interface IAVTable extends IAVView {
|
|||
sorts: IAVSort[],
|
||||
rows: IAVRow[],
|
||||
rowCount: number,
|
||||
pageSize: number,
|
||||
}
|
||||
|
||||
interface IAVGallery extends IAVView {
|
||||
cards: IAVGalleryItem[],
|
||||
desc: string
|
||||
fields: IAVColumn[]
|
||||
filters: IAVFilter[],
|
||||
sorts: IAVSort[],
|
||||
cardCount: number,
|
||||
}
|
||||
|
||||
interface IAVFilter {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue