13 lines
606 B
Plaintext
13 lines
606 B
Plaintext
export type OptionString = 'array' | 'array-simple' | 'generic';
|
|
export type Options = [
|
|
{
|
|
default: OptionString;
|
|
readonly?: OptionString;
|
|
}
|
|
];
|
|
export type MessageIds = 'errorStringArray' | 'errorStringArrayReadonly' | 'errorStringArraySimple' | 'errorStringArraySimpleReadonly' | 'errorStringGeneric' | 'errorStringGenericSimple';
|
|
declare const _default: import("@typescript-eslint/utils/ts-eslint").RuleModule<MessageIds, Options, import("../../rules").ESLintPluginDocs, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
|
|
name: string;
|
|
};
|
|
export default _default;
|