From 2e40c4f7423d7ef456a8300dd7448583dd3d4603 Mon Sep 17 00:00:00 2001 From: Chris Thoburn Date: Sun, 24 Mar 2019 00:23:44 -0700 Subject: [PATCH] cleanup interface section --- text/0000-ember-data-identifiers.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/text/0000-ember-data-identifiers.md b/text/0000-ember-data-identifiers.md index 4adcc13ff8..b855c38822 100644 --- a/text/0000-ember-data-identifiers.md +++ b/text/0000-ember-data-identifiers.md @@ -107,12 +107,6 @@ foundation for mechanisms through which this can be later achieved. ## Detailed design ```typescript -const IS_IDENTIFIER = Symbol('is-identifier'); - -// provided for additional debuggability -const DEBUG_CLIENT_ORIGINATED = Symbol('record-originated-on-client'); -const DEBUG_IDENTIFIER_BUCKET = Symbol('identifier-bucket'); - export interface Identifier { lid: string; } @@ -661,4 +655,4 @@ a multitude of benefits, including: are also `ResourceIdentifierObjects` * **ergonomics:** We can provide better `typescript` support for an object interface than a `string` given that any `string` would fit the `lid` interface but only correctly shaped objects (which includes - the `Symbol` for `identifier`) would fit the correct object interface. \ No newline at end of file + the `Symbol` for `identifier`) would fit the correct object interface.