-
Notifications
You must be signed in to change notification settings - Fork 135
Closed
Description
In all SaveOptions the static objects are not accessible when instantiating a SaveOptions object
Example:
let saveOpts = new TiffSaveOptions();
saveOpts.alphaChannels = false; // ts error: Property 'alphaChannels' does not exist on type 'TiffSaveOptions'.Should update to:
declare class TiffSaveOptions {
/**
* If true, the alpha channels are saved.
*/
static alphaChannels: boolean;
alphaChannels: boolean;
/**
* If true, the annotations are saved.
*/
static annotations: boolean;
annotations: boolean;
...Metadata
Metadata
Assignees
Labels
No labels