dojo icon indicating copy to clipboard operation
dojo copied to clipboard

[BUG] Typescript bindings : models

Open notV4l opened this issue 4 months ago • 1 comments
trafficstars

Describe the bug

The interface is well splited by package ex:

export interface SchemaType extends ISchemaType {
  package_1: {
    ModelA: ModelA;
  },
   package_2: {
    ModelB: ModelB;
  },
}

but seems the schema const is not ex:

export const schema: SchemaType = {
  package_1: {
    ModelA,
    ModelB
  }
}

notV4l avatar Jun 27 '25 15:06 notV4l