shawnholman/Aych

View on GitHub
src/interfaces/attributes.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * The Attributes interface represents the whole set of possible HTML attributes.
 *
 * TODO: [p2] Add the list of possible HTML attributes here
 */
export type Attribute = string | null | Array<boolean | string | null>;
export interface Attributes {
    [key: string]: Attribute;
}