UNPKG

325 BTypeScriptView Raw
1import { ASTVisitor } from '../../language/visitor';
2import { SDLValidationContext } from '../ValidationContext';
3
4/**
5 * Possible type extension
6 *
7 * A type extension is only valid if the type is defined and has the same kind.
8 */
9export function PossibleTypeExtensionsRule(
10 context: SDLValidationContext,
11): ASTVisitor;