@@ -99,8 +99,7 @@ export class Array<S extends Schema = Schema> implements SchemaClass {
9999 */
100100export class All <
101101 S extends EntityMap | EntityInterface = EntityMap | EntityInterface ,
102- > implements SchemaClass
103- {
102+ > implements SchemaClass {
104103 /**
105104 * Retrieves all entities in cache
106105 *
@@ -153,9 +152,9 @@ export class All<
153152 * Represents objects with statically known members
154153 * @see https://dataclient.io/rest/api/Object
155154 */
156- export class Object < O extends Record < string , any > = Record < string , any > >
157- implements SchemaClass
158- {
155+ export class Object <
156+ O extends Record < string , any > = Record < string , any > ,
157+ > implements SchemaClass {
159158 /**
160159 * Represents objects with statically known members
161160 * @see https://dataclient.io/rest/api/Object
@@ -242,9 +241,8 @@ export interface UnionConstructor {
242241 */
243242export interface UnionInstance <
244243 Choices extends EntityMap = any ,
245- Args extends EntityFields <
246- AbstractInstanceType < Choices [ keyof Choices ] >
247- > = EntityFields < AbstractInstanceType < Choices [ keyof Choices ] > > ,
244+ Args extends EntityFields < AbstractInstanceType < Choices [ keyof Choices ] > > =
245+ EntityFields < AbstractInstanceType < Choices [ keyof Choices ] > > ,
248246> {
249247 define ( definition : Schema ) : void ;
250248 inferSchema : SchemaAttributeFunction < Choices [ keyof Choices ] > ;
0 commit comments