Skip to content

Commit 14698eb

Browse files
Merge pull request #21 from MaksymStoianov/max/next
fix: imports
2 parents 07bf35b + 6ed4266 commit 14698eb

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Functions that enable various operations on a collection of base utility methods
4848
<details open><summary>Functions</summary>
4949

5050
| Function | Description |
51-
|:----------------------------------------------------|:---------------------------------------|
51+
| :-------------------------------------------------- | :------------------------------------- |
5252
| [`getByteSize`](src/appsscript/base/getByteSize.ts) | Returns the size of a string in bytes. |
5353

5454
</details>
@@ -65,7 +65,7 @@ Functions that enable various operations on Google Drive.
6565
<details open><summary>Functions</summary>
6666

6767
| Function | Description |
68-
|:---------|:------------|
68+
| :------- | :---------- |
6969
| | |
7070

7171
</details>
@@ -77,7 +77,7 @@ Functions that enable various operations on Google Docs.
7777
<details open><summary>Functions</summary>
7878

7979
| Function | Description |
80-
|:---------|:------------|
80+
| :------- | :---------- |
8181
| | |
8282

8383
</details>
@@ -89,7 +89,7 @@ Functions that enable various operations on Google Forms.
8989
<details open><summary>Functions</summary>
9090

9191
| Function | Description |
92-
|:---------|:------------|
92+
| :------- | :---------- |
9393
| | |
9494

9595
</details>
@@ -101,7 +101,7 @@ Functions that enable various operations on Google Sheets.
101101
<details open><summary>Functions</summary>
102102

103103
| Function | Description |
104-
|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------|
104+
| :------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------- |
105105
| [`appendColumn`](src/appsscript/sheet/appendColumn.ts) | Appends a single column of data to the sheet. |
106106
| [`appendColumns`](src/appsscript/sheet/appendColumns.ts) | Appends multiple columns of data to the sheet. |
107107
| [`appendRow`](src/appsscript/sheet/appendRow.ts) | Appends a single row of data to the sheet. |
@@ -144,7 +144,7 @@ Functions that enable various operations on Google Slides.
144144
<details open><summary>Functions</summary>
145145

146146
| Function | Description |
147-
|:---------|:------------|
147+
| :------- | :---------- |
148148
| | |
149149

150150
</details>
@@ -156,7 +156,7 @@ Functions that enable various operations on the user interface, including sideba
156156
<details open><summary>Functions</summary>
157157

158158
| Function | Description |
159-
|:--------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------|
159+
| :------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------- |
160160
| [`checkMultipleAccount`](src/appsscript/ui/checkMultipleAccount.ts) | Checks if multiple Google accounts are in use. |
161161
| [`isHtmlOutput`](src/appsscript/ui/isHtmlOutput.ts) | Checks if an object is an [`HtmlOutput`](https://developers.google.com/apps-script/reference/html/html-output). |
162162
| [`isTextOutput`](src/appsscript/ui/isTextOutput.ts) | Checks if an object is a [`TextOutput`](https://developers.google.com/apps-script/reference/content/text-output). |
@@ -173,7 +173,7 @@ This package contains core utility functions that are not tied to a specific App
173173
<details open><summary>Functions</summary>
174174

175175
| Function | Description |
176-
|:--------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------|
176+
| :------------------------------------------------------------------ | :--------------------------------------------------------------------------------------------- |
177177
| [`chunk`](src/lang/array/chunk.ts) | Splits an array into chunks of a specified size. |
178178
| [`decodeHtml`](src/html/decodeHtml.ts) | Decodes HTML entities. |
179179
| [`encodeHtml`](src/html/encodeHtml.ts) | Encodes a string for safe use in HTML. |
@@ -244,14 +244,14 @@ This package is for all exception classes.
244244
<details open><summary>Functions</summary>
245245

246246
| Exception | Description |
247-
|:-------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------|
247+
| :----------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------ |
248248
| [`AdminDirectoryException`](src/exception/appsscript/admin/AdminDirectoryException.ts) | Represents an exception thrown when the Admin SDK Directory Service is not available or enabled. |
249249
| [`InvalidGridRangeException`](src/exception/appsscript/sheet/InvalidGridRangeException.ts) | Represents an exception thrown when an invalid [`GridRange`](src/appsscript/sheet/types/GridRange.ts) object is provided. |
250250
| [`InvalidRangeException`](src/exception/appsscript/sheet/InvalidRangeException.ts) | Represents an exception thrown when an invalid [range](https://developers.google.com/apps-script/reference/spreadsheet/sheet) object is provided. |
251251
| [`InvalidSheetException`](src/exception/appsscript/sheet/InvalidSheetException.ts) | Represents an exception thrown when an invalid [sheet](https://developers.google.com/apps-script/reference/spreadsheet/sheet) object is provided. |
252252

253253
| Exception | Description |
254-
|:------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------|
254+
| :---------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------- |
255255
| [`Exception`](src/exception/Exception.ts) | Base exception class. |
256256
| [`RuntimeException`](src/exception/RuntimeException.ts) | Exception for runtime errors. |
257257
| [`EmptyStringException`](src/exception/EmptyStringException.ts) | Exception for empty strings. |
@@ -269,7 +269,7 @@ Functions for working with file paths and URLs.
269269
<details open><summary>Functions</summary>
270270

271271
| Function | Description |
272-
|:-------------------------------------------------|:----------------------------------------------------------------|
272+
| :----------------------------------------------- | :-------------------------------------------------------------- |
273273
| [`isAbsolute`](src/net/path/isAbsolute.ts) | Checks if a path is absolute. |
274274
| [`isRelative`](src/net/path/isRelative.ts) | Checks if a path is relative. |
275275
| [`isValidDomain`](src/net/path/isValidDomain.ts) | Checks if a string is a valid domain name. |
@@ -284,15 +284,15 @@ Functions for working with file paths and URLs.
284284
<details open><summary>Functions</summary>
285285

286286
| Abstract | Description |
287-
|:-----------------------------|:------------|
287+
| :--------------------------- | :---------- |
288288
| [`Class`](src/lang/Class.ts) | |
289289

290290
</details>
291291

292292
<details open><summary>Functions</summary>
293293

294294
| Interface | Description |
295-
|:-----------------------------------|:-------------------------|
295+
| :--------------------------------- | :----------------------- |
296296
| [`Iterator`](src/lang/Iterator.ts) | Interface for iterators. |
297297

298298
</details>

src/appsscript/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ export * from "./drive";
66
export * from "./form";
77
export * from "./sheet";
88
export * from "./slide";
9+
export * from "./ui";

0 commit comments

Comments
 (0)