/** * This error is triggered when a DROP statement * has an invalid option following the 'DROP'. * * It would trigger for this: * DROP RUBBISH thing; * It wouldn't trigger for this: * DROP TABLE test; */ import { IChecker } from "../../interface"; import { PostgresDrop } from "../../../barrel/statements"; import { InvalidOption } from "../invalidOption"; declare class PostgresInvalidDropOption extends InvalidOption implements IChecker { checker: PostgresDrop; appliesTo: string[]; } export { PostgresInvalidDropOption };