Skip to content

Commit 5165ddf

Browse files
committed
chore: cleanup some comments
1 parent 35209ed commit 5165ddf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/environment/mutation-types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Taken from:
44
* @see https://github.com/Airtable/blocks/blob/6c0a2ed709a34e28cb3e999fc6cc6406eaa3817b/packages/sdk/src/types/mutations.ts
55
*/
6-
76
const MutationTypes = Object.freeze({
87
SET_MULTIPLE_RECORD_CELL_VALUES: 'setMultipleRecordCellValues' as const,
98
DELETE_RECORD: 'deleteRecord' as const,

src/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
export { AirtableScriptEnvironment as default } from './environment'
2-
31
import type { AirtableScriptGlobal } from './environment'
42
import type {
53
RunScriptOptions,
64
RunScriptResult,
75
} from './environment/run-airtable-script'
86

7+
export { AirtableScriptEnvironment as default } from './environment'
8+
99
declare global {
1010
/**
1111
* Runs a given Airtable script against a base fixture. Returns the output, console, and base
@@ -26,9 +26,11 @@ declare global {
2626
const runAirtableScript: (
2727
options: RunScriptOptions
2828
) => Promise<RunScriptResult>
29+
2930
/**
3031
* An object containing the different types of mutations that can be tracked in a script.
3132
*/
33+
3234
const MutationTypes: AirtableScriptGlobal['MutationTypes']
3335
/**
3436
* A special string that is used to denote that a call to output.clear() was made in the script.

0 commit comments

Comments
 (0)