UNPKG
@nekobird/styled-chemistry
Version:
latest (0.0.2)
0.0.2
0.0.1
A theming system for css-in-js.
github.com/nekobird/style-system
nekobird/style-system
@nekobird/styled-chemistry
/
build
/
types
/
lib
/
interfaces
/
set.d.ts
11 lines
(10 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
ISet
<
T
> {
readonly
set
: T[];
readonly
default
?: number;
readonly
alias
?: { [
alias: string
]: number; }; } export
interface
ISuperSet
<
T
> {
readonly
[name:
string
]: ISet<T>; }