Variable imageSchemaConst

imageSchema: {
    additionalProperties: false;
    properties: {
        alt: {
            type: "string";
        };
        uri: {
            type: "string";
        };
    };
    required: readonly ["uri"];
    type: "object";
} = ...

Type declaration

  • Readonly additionalProperties: false
  • Readonly properties: {
        alt: {
            type: "string";
        };
        uri: {
            type: "string";
        };
    }
    • Readonly alt: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly uri: {
          type: "string";
      }
      • Readonly type: "string"
  • Readonly required: readonly ["uri"]
  • Readonly type: "object"