sheetly
Version:
A simple library for creating CSSStyleSheet with CSS source code.
13 lines (11 loc) • 323 B
TypeScript
/**
* @license sheetly
* Copyright (C) 2023 DarrenDanielDay <Darren_Daniel_Day@hotmail.com>
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
declare module "*.css.js" {
export let text: string;
export const sheet: CSSStyleSheet;
}