import * as Lint from 'tslint'; import * as ts from 'typescript'; /** * Validate valid GUID strings are being passed as an argument to SPKillSwitch.isActivated calls. * JavaScript does not have a native GUID type. We removed expensive runtime parsing during production * builds when checking kill switches. In order to ensure type safety, we are validating at build time with tslint. */ export declare class Rule extends Lint.Rules.AbstractRule { static metadata: Lint.IRuleMetadata; apply(source: ts.SourceFile): Lint.RuleFailure[]; } //# sourceMappingURL=validKillSwitchGuidRule.d.ts.map