Skip to content

Runtime property names have hyphens, while d.ts is camel cased. #3

@saabi

Description

@saabi

The following CSS:

#app-root { ... }
.widget { ... }
.ticker { ... }
.ticker .selected { ... }
.positive { ... }
.negative { ... }

generates the following d.ts with names camel cased:

export const appRoot: string;
export const widget: string;
export const ticker: string;
export const selected: string;
export const positive: string;
export const negative: string;

But during runtime, the hyphens remain and there is no camel cased alternative:

image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions