diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-16 07:46:55 -0500 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-16 07:46:55 -0500 |
commit | 3c71a4b9c727f8eee8631b46b28c010682608f13 (patch) | |
tree | 461dbe3b4ac666d6ddc2c736d9b024dfcbc85275 /src/fields/Key.ts | |
parent | 32b197fd3a0340d01a4b432d7815a14eefda0a97 (diff) |
Fixed server and added a field debug viewer
Diffstat (limited to 'src/fields/Key.ts')
-rw-r--r-- | src/fields/Key.ts | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/fields/Key.ts b/src/fields/Key.ts index 51d8e093c..d3958df2d 100644 --- a/src/fields/Key.ts +++ b/src/fields/Key.ts @@ -48,27 +48,4 @@ export class Key extends Field { _id: this.Id } } -} - -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 Width = new Key("Width"); - export const Height = new Key("Height"); - export const ZIndex = new Key("ZIndex"); - export const Data = new Key("Data"); - export const Layout = new Key("Layout"); - export const LayoutKeys = new Key("LayoutKeys"); - export const LayoutFields = new Key("LayoutFields"); - export const ColumnsKey = new Key("SchemaColumns"); - - export function Get(name: string): Key { - return new Key(name) - } }
\ No newline at end of file |