Skip to content

Commit

Permalink
fix(docs): fix comments error
Browse files Browse the repository at this point in the history
  • Loading branch information
VicKun4937 committed Jan 24, 2025
1 parent 043aedc commit 0688283
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/core/src/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
* limitations under the License.
*/

/**
* @ignore
*/
export type Nullable<T> = T | null | undefined | void;

/**
Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/types/enum/border-style-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
* limitations under the License.
*/

/**
* Border style types enum
*/
export enum BorderStyleTypes {
NONE,
THIN,
Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/types/enum/text-style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
* limitations under the License.
*/

/**
* An enum that specifies the text direction of a cell.
*/
export enum TextDirection {
UNSPECIFIED,
LEFT_TO_RIGHT,
Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/types/enum/theme-color-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
* limitations under the License.
*/

/**
* Theme color type enum
*/
export enum ThemeColorType {
/**
* TEXT
Expand Down

0 comments on commit 0688283

Please sign in to comment.