Portex SDK Documentation
    Preparing search index...

    Interface IPortex

    Request Interface

    interface IPortex {
        call<T>(
            path: string,
            options?: PortexRequestOptions,
        ): Promise<PortexResponse<T>>;
        init(): Promise<VerifyResult>;
        getStartParam(): string;
        isVerified: boolean;
        webApp: WebApp;
    }
    Index

    Properties

    isVerified: boolean

    Check if user is verified

    webApp: WebApp

    Telegram Web App

    Methods