Skip to content

Commit

Permalink
fix: system package function signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
Peefy committed Sep 5, 2023
1 parent a54c1b7 commit 3583532
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/reference/model/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Deserialize `value` (a string instance containing a JSON document) to a KCL obje
dump_to_file(
data: any,
filename: str,
sort_keys: bool = False,
indent: int = None,
ignore_private: bool = False,
ignore_none: bool = False
) -> None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ encode(
dump_to_file(
data: any,
filename: str,
sort_keys: bool = False,
indent: int = None,
ignore_private: bool = False,
ignore_none: bool = False
) -> None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ encode(
dump_to_file(
data: any,
filename: str,
sort_keys: bool = False,
ignore_private: bool = False,
ignore_none: bool = False
) -> None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type: "docs"
description: datetime 包 - 时间处理
weight: 100
---
## time
## ticks

`ticks() -> float`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ encode(
dump_to_file(
data: any,
filename: str,
sort_keys: bool = False,
indent: int = None,
ignore_private: bool = False,
ignore_none: bool = False
) -> None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ encode(
dump_to_file(
data: any,
filename: str,
sort_keys: bool = False,
ignore_private: bool = False,
ignore_none: bool = False
) -> None
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-0.5.6/reference/model/datetime.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type: "docs"
description: datetime system module
weight: 100
---
## time
## ticks

`ticks() -> float`

Expand Down
2 changes: 2 additions & 0 deletions versioned_docs/version-0.5.6/reference/model/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Deserialize `value` (a string instance containing a JSON document) to a KCL obje
dump_to_file(
data: any,
filename: str,
sort_keys: bool = False,
indent: int = None,
ignore_private: bool = False,
ignore_none: bool = False
) -> None
Expand Down

0 comments on commit 3583532

Please sign in to comment.