mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
Use relative imports only in plugin folder (#328)
This commit is contained in:
parent
eea2ef5cfb
commit
c9933b6908
@ -1,4 +1,4 @@
|
||||
import { CellValue } from "app/plugin/GristData";
|
||||
import { CellValue } from "./GristData";
|
||||
|
||||
/**
|
||||
* JSON schema for api /record endpoint. Used in POST method for adding new records.
|
||||
|
@ -1,4 +1,4 @@
|
||||
import * as Types from 'app/plugin/DocApiTypes';
|
||||
import * as Types from './DocApiTypes';
|
||||
|
||||
/**
|
||||
* Offer CRUD-style operations on a table.
|
||||
|
@ -1,6 +1,6 @@
|
||||
import * as Types from "app/plugin/DocApiTypes";
|
||||
import { BulkColValues } from 'app/plugin/GristData';
|
||||
import { OpOptions, TableOperations, UpsertOptions } from 'app/plugin/TableOperations';
|
||||
import * as Types from "./DocApiTypes";
|
||||
import { BulkColValues } from './GristData';
|
||||
import { OpOptions, TableOperations, UpsertOptions } from './TableOperations';
|
||||
import { arrayRepeat } from './gutil';
|
||||
import flatMap = require('lodash/flatMap');
|
||||
import isEqual = require('lodash/isEqual');
|
||||
|
@ -4,7 +4,7 @@
|
||||
*/
|
||||
// tslint:disable:max-classes-per-file
|
||||
|
||||
import { CellValue, GristObjCode } from 'app/plugin/GristData';
|
||||
import { CellValue, GristObjCode } from './GristData';
|
||||
import isPlainObject = require('lodash/isPlainObject');
|
||||
|
||||
// The text to show on cells whose values are pending.
|
||||
|
Loading…
Reference in New Issue
Block a user