Skip to content

Latest commit

 

History

History
149 lines (123 loc) · 3.19 KB

File metadata and controls

149 lines (123 loc) · 3.19 KB

API Report File for "api-documenter-test"

Do not edit this file. It is a report generated by API Extractor.

// @public
export const constVariable: number;

// @public
export class DocBaseClass {
    constructor();
    constructor(x: number);
}

// @public
export class DocClass1 extends DocBaseClass implements IDocInterface1, IDocInterface2 {
    // @internal
    constructor(name: string);
    // @deprecated (undocumented)
    deprecatedExample(): void;
    exampleFunction(a: string, b: string): string;
    exampleFunction(x: number): number;
    interestingEdgeCases(): void;
    // @eventProperty
    malformedEvent: SystemEvent;
    // @eventProperty
    readonly modifiedEvent: SystemEvent;
    // (undocumented)
    get readonlyProperty(): string;
    regularProperty: SystemEvent;
    static sumWithExample(x: number, y: number): number;
    tableExample(): void;
    // (undocumented)
    get writeableProperty(): string;
    set writeableProperty(value: string);
}

// @public
export class DocClassInterfaceMerge {
}

// @public
export interface DocClassInterfaceMerge {
}

// @public
export enum DocEnum {
    One = 1,
    Two = 2,
    Zero = 0
}

// @public
export namespace EcmaSmbols {
    const example: unique symbol;
}

// @public
export type ExampleTypeAlias = Promise<boolean>;

// @public
export class Generic<T> {
}

// @public (undocumented)
export type GenericTypeAlias<T> = T[];

// @public
export function globalFunction(x: number): number;

// @public (undocumented)
export interface IDocInterface1 {
    regularProperty: SystemEvent;
}

// @public (undocumented)
export interface IDocInterface2 extends IDocInterface1 {
    // @deprecated (undocumented)
    deprecatedExample(): void;
}

// @public
export interface IDocInterface3 {
    "[not.a.symbol]": string;
    [EcmaSmbols.example]: string;
    (x: number): number;
    [x: string]: string;
    new (): IDocInterface1;
    "redundantQuotes": string;
}

// @public
export interface IDocInterface4 {
    Context: ({ children }: {
        children: string;
    }) => boolean;
    generic: Generic<number>;
    numberOrFunction: number | (() => number);
    stringOrNumber: string | number;
}

// @public
export interface IDocInterface5 {
    regularProperty: string;
}

// @public
export interface IDocInterface6 {
    regularProperty: number;
}

// @public
export interface IDocInterface6 {
    // (undocumented)
    arrayProperty: IDocInterface1[];
    // (undocumented)
    genericReferenceMethod<T>(x: T): T;
    // (undocumented)
    intersectionProperty: IDocInterface1 & IDocInterface2;
    // (undocumented)
    tupleProperty: [IDocInterface1, IDocInterface2];
    // (undocumented)
    typeReferenceProperty: Generic<IDocInterface1>;
    // (undocumented)
    unionProperty: IDocInterface1 | IDocInterface2;
}

// @public
export namespace OuterNamespace {
    export namespace InnerNamespace {
        export function nestedFunction(x: number): number;
    }
    let nestedVariable: boolean;
}

// @public
export class SystemEvent {
    addHandler(handler: () => void): void;
}

// @public (undocumented)
export type TypeAlias = number;

// @public (undocumented)
export function yamlReferenceUniquenessTest(): IDocInterface1;