parse-googlesheets
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "parse-googlesheets", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Parse google sheets", | ||
@@ -5,0 +5,0 @@ "main": "dist/parse-googlesheets.min.js", |
@@ -7,11 +7,11 @@ ### This is library for parse google sheets | ||
```typescript | ||
import { parseGoogleSheets } from 'parse-googlesheets'; | ||
import { parseGoogleSheets, number, string } from 'parse-googlesheets'; | ||
const schema = { | ||
dataProperty1: { | ||
type: 'string' as 'string', | ||
parse: string, | ||
columnName: 'Column name 1' | ||
}, | ||
dataProperty2: { | ||
type: 'number' as 'number', | ||
parse: number, | ||
columnName: 'Column name 2' | ||
@@ -18,0 +18,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31602