UNPKG

@vansite/ts-sharetribe-flex-sdk

Version:

This is a TypeScript SDK for Sharetribe Flex API. It reduces the complexity of the API and provides a more user-friendly interface.

11 lines (10 loc) 248 B
/** * Base interface for all SDK type classes. * Implementing this interface helps preserve class names during bundling. */ export interface SdkType { /** * Type identifier for SDK type classes. */ readonly _sdkType: string; }