@cimo/environment
Version:
Environment file processor. Light, fast and secure.
21 lines (20 loc) • 631 B
TypeScript
import { TSESTree } from "@typescript-eslint/utils";
import { RuleContext } from "@typescript-eslint/utils/dist/ts-eslint";
export declare const rules: {
"disallow-array-for-object-type": {
meta: {
type: string;
docs: {
description: string;
recommended: boolean;
};
messages: {
disallowArrayForObjectType: string;
};
schema: never[];
};
create(context: RuleContext<"disallowArrayForObjectType", []>): {
TSArrayType(node: TSESTree.TSArrayType): void;
};
};
};