File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
* Taken from:
4
4
* @see https://github.com/Airtable/blocks/blob/6c0a2ed709a34e28cb3e999fc6cc6406eaa3817b/packages/sdk/src/types/mutations.ts
5
5
*/
6
-
7
6
const MutationTypes = Object . freeze ( {
8
7
SET_MULTIPLE_RECORD_CELL_VALUES : 'setMultipleRecordCellValues' as const ,
9
8
DELETE_RECORD : 'deleteRecord' as const ,
Original file line number Diff line number Diff line change 1
- export { AirtableScriptEnvironment as default } from './environment'
2
-
3
1
import type { AirtableScriptGlobal } from './environment'
4
2
import type {
5
3
RunScriptOptions ,
6
4
RunScriptResult ,
7
5
} from './environment/run-airtable-script'
8
6
7
+ export { AirtableScriptEnvironment as default } from './environment'
8
+
9
9
declare global {
10
10
/**
11
11
* Runs a given Airtable script against a base fixture. Returns the output, console, and base
@@ -26,9 +26,11 @@ declare global {
26
26
const runAirtableScript : (
27
27
options : RunScriptOptions
28
28
) => Promise < RunScriptResult >
29
+
29
30
/**
30
31
* An object containing the different types of mutations that can be tracked in a script.
31
32
*/
33
+
32
34
const MutationTypes : AirtableScriptGlobal [ 'MutationTypes' ]
33
35
/**
34
36
* A special string that is used to denote that a call to output.clear() was made in the script.
You can’t perform that action at this time.
0 commit comments