/** * Schema for the "x-scalar-is-dirty" OpenAPI extension. * This extension allows specifying an optional boolean value, * which can be used to track if the document state is dirty. * * This is used to track if the document has been modified since it was last saved. * * @example * ```yaml * x-scalar-is-dirty: true * ``` * * @example * ```yaml * x-scalar-is-dirty: false * ``` */ export declare const XScalarIsDirtySchema: import("@scalar/typebox").TObject<{ /** Whether the document state is dirty, this is used to track if the document has been modified since it was last saved */ 'x-scalar-is-dirty': import("@scalar/typebox").TOptional; }>; /** * Schema for the "x-scalar-is-dirty" OpenAPI extension. * This extension allows specifying an optional boolean value, * which can be used to track if the document state is dirty. * * This is used to track if the document has been modified since it was last saved. * * @example * ```yaml * x-scalar-is-dirty: true * ``` * * @example * ```yaml * x-scalar-is-dirty: false * ``` */ export type XScalarIsDirty = { /** Whether the document state is dirty, this is used to track if the document has been modified since it was last saved */ 'x-scalar-is-dirty'?: boolean; }; //# sourceMappingURL=x-scalar-is-dirty.d.ts.map