kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/typescript/testdata/reexport_group/main.ts (about)

     1  /** @fileoverview See description in reexport.ts */
     2  
     3  //- @Interface defines/binding Interface
     4  export interface Interface {}
     5  
     6  //- @Class defines/binding Class
     7  export class Class {}
     8  
     9  //- @someFunction defines/binding SomeFunction
    10  export function someFunction() {}
    11  
    12  //- @CONSTANT defines/binding Constant
    13  export const CONSTANT = 1;
    14  
    15  //- @Enum defines/binding Enum
    16  export enum Enum {}
    17  
    18  //- @Type defines/binding Type
    19  export type Type = string;