0.1.0 • Published 4 years ago

@ts-module-for-gas/gas-table v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

GAS-Table

Table module provides CRUD-like interface and JSON based data handling with Google Spreadsheet. This is TypeScript modules for Google Apps Script with clasp.

Example

const Users = new Table('<YOUR_SPREADSHEET_ID>',123456);
Users.add({ name : 'John Smith', age : 20});

const user = Users.get(1);
user.age = 21;
Users.update(user);

Reference

Initialize & push

import Table from '@ts-module-for-gas/gas-table';

Global Service

createTable(name: string, schema: string[] | Object)

  • name Name of the spreadsheet which using as Table
  • schema

Example:

const Users = Table.createTable('Users',)
0.1.0

4 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago