You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
452 B
TypeScript

import { CommentDirectives } from './comment-directives';
export declare class Shared {
readonly commentDirectives: CommentDirectives[];
newCommentDirectives(options: ConstructorParameters<typeof CommentDirectives>[0]): CommentDirectives;
}
export declare function beginShared(filename: string): void;
export declare function terminateShared(filename: string): Shared | null;
export declare function getShared(filename: string): Shared | null;