@platformos/pos-cli
Version:
Manage your platformOS application
12 lines • 596 B
TypeScript
import { Client, Options } from '@sentry/types';
/** A class object that can instanciate Client objects. */
export declare type ClientClass<F extends Client, O extends Options> = new (options: O) => F;
/**
* Internal function to create a new SDK client instance. The client is
* installed and then bound to the current scope.
*
* @param clientClass The client class to instanciate.
* @param options Options to pass to the client.
*/
export declare function initAndBind<F extends Client, O extends Options>(clientClass: ClientClass<F, O>, options: O): void;
//# sourceMappingURL=sdk.d.ts.map