diff options
author | tschicke-brown <tyler_schicke@brown.edu> | 2019-02-19 21:58:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-19 21:58:18 -0500 |
commit | 4610f1cc4653aa3b8389a677b9a1bd94590752a1 (patch) | |
tree | 6fd1cfe02eaeaf1dc074a26cc4cde39c3313d1f3 /src/fields/KeyStore.ts | |
parent | 190d0225d7bf605aa53847eb7beda5de72e753a8 (diff) | |
parent | ef10a6bdf753f75cbc5b5d8b7dcc53c3d4c219ad (diff) |
Merge pull request #8 from browngraphicslab/server_database_merge
Server database merge
Diffstat (limited to 'src/fields/KeyStore.ts')
-rw-r--r-- | src/fields/KeyStore.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/fields/KeyStore.ts b/src/fields/KeyStore.ts new file mode 100644 index 000000000..7056886aa --- /dev/null +++ b/src/fields/KeyStore.ts @@ -0,0 +1,25 @@ +import { Key } from "./Key"; + +export namespace KeyStore { + export const Prototype = new Key("Prototype"); + export const X = new Key("X"); + export const Y = new Key("Y"); + export const Title = new Key("Title"); + export const Author = new Key("Author"); + export const PanX = new Key("PanX"); + export const PanY = new Key("PanY"); + export const Scale = new Key("Scale"); + export const NativeWidth = new Key("NativeWidth"); + export const NativeHeight = new Key("NativeHeight"); + export const Width = new Key("Width"); + export const Height = new Key("Height"); + export const ZIndex = new Key("ZIndex"); + export const Data = new Key("Data"); + export const Annotations = new Key("Annotations"); + export const Layout = new Key("Layout"); + export const BackgroundLayout = new Key("BackgroundLayout"); + export const LayoutKeys = new Key("LayoutKeys"); + export const LayoutFields = new Key("LayoutFields"); + export const ColumnsKey = new Key("SchemaColumns"); + export const ActiveFrame = new Key("ActiveFrame"); +} |