Skip to content

Commit

Permalink
fix(all): lints
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Jan 11, 2024
1 parent 1b30fd6 commit 155d31d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions css.d.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
declare module "*.css" {
export const css: string;
export const classes: Record<string, string>;
declare module '*.css' {
export const css: string
export const classes: Record<string, string>
}

declare module "*.scss" {
export const css: string;
export const classes: Record<string, string>;
declare module '*.scss' {
export const css: string
export const classes: Record<string, string>
}

declare module "*.sass" {
export const css: string;
export const classes: Record<string, string>;
declare module '*.sass' {
export const css: string
export const classes: Record<string, string>
}

0 comments on commit 155d31d

Please sign in to comment.