Skip to content

Commit c4e0f5c

Browse files
fix: format
1 parent 23e4c15 commit c4e0f5c

6 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/appsscript/sheet/appendColumns.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { isConsistent2DArray } from "../../lang";
33
import { requireSheet } from "./requireSheet";
44

55
export interface Options {
6+
67
/**
78
* Determines whether to insert columns after frozen columns.
89
* If `true`, columns will be added immediately to the right of any frozen columns, if they exist.

src/appsscript/sheet/appendRows.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { isConsistent2DArray } from "../../lang";
33
import { requireSheet } from "./requireSheet";
44

55
export interface AppendRowsOptions {
6+
67
/**
78
* Determines whether to insert rows after frozen rows.
89
* If `true`, rows will be added immediately after the frozen rows, if they exist.

src/appsscript/sheet/prependRows.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { isConsistent2DArray } from "../../lang";
33
import { requireSheet } from "./requireSheet";
44

55
export interface PrependRowsOptions {
6+
67
/**
78
* Determines whether to insert rows after frozen rows.
89
* If `true`, rows will be added immediately after the frozen rows, if they exist.

src/appsscript/sheet/types/GridRange.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* @version 1.0.0
66
*/
77
export interface GridRange {
8+
89
/**
910
* The sheets this range is on.
1011
*/

src/lang/Iterator.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @version 1.0.0
88
*/
99
export interface Iterator<T> {
10+
1011
/**
1112
* Gets the index of the current position in the collection.
1213
*

src/net/path/types/ParsedPath.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* @version 0.1.0
44
*/
55
export type ParsedPath = {
6+
67
/**
78
* The root of the url such as '/'.
89
*/

0 commit comments

Comments
 (0)