While attempting to compile my TS files using grunt-typescript
, I encountered the following error:
Error TS1110: Expected type.
This error appeared on each of the three lines below:
export type AttributeWriteType = "Append" | "Replace" | "Static";
export type Action = "Create" | "Delete";
export type Status = "Created" | "Queued" | "Running" | "Completed" | "Expired";
As a newcomer to Typescript, I would greatly appreciate any guidance or advice.