Skip to content

Commit

Permalink
Deploying to gh-pages from @ 6034264 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Metauriel committed Sep 21, 2023
1 parent 4483499 commit 87c9558
Show file tree
Hide file tree
Showing 128 changed files with 14,334 additions and 10,107 deletions.
4 changes: 4 additions & 0 deletions classes/Card.html
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,10 @@ <h3 id="accessors">
title: string;
height: number;
}

export function isCard(reference: unknown): reference is Card {
return reference instanceof Card;
}
</code></pre>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions classes/Column.html
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,10 @@ <h3 id="accessors">
export interface ColumnProps extends BoardCompositeProps {
title: string;
}

export function isColumn(reference: unknown): reference is Column {
return reference instanceof Column;
}
</code></pre>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions classes/ColumnBoard.html
Original file line number Diff line number Diff line change
Expand Up @@ -910,6 +910,10 @@ <h3 id="accessors">
title: string;
context: BoardExternalReference;
}

export function isColumnBoard(reference: unknown): reference is ColumnBoard {
return reference instanceof ColumnBoard;
}
</code></pre>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions classes/FileElement.html
Original file line number Diff line number Diff line change
Expand Up @@ -876,6 +876,10 @@ <h3 id="accessors">
caption: string;
alternativeText: string;
}

export function isFileElement(reference: unknown): reference is FileElement {
return reference instanceof FileElement;
}
</code></pre>
</div>
</div>
Expand Down
Loading

0 comments on commit 87c9558

Please sign in to comment.