8 lines
200 B
Plaintext
8 lines
200 B
Plaintext
/**
|
|
* @fileoverview Types for the plugin-kit package.
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
export type StringConfig = Record<string, string | null>;
|
|
export type BooleanConfig = Record<string, boolean>;
|