6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
![]() |
export enum GoogleSheetsAction {
|
||
|
GET = 'Get data from sheet',
|
||
|
INSERT_ROW = 'Insert a row',
|
||
|
UPDATE_ROW = 'Update a row',
|
||
|
}
|