@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
17 lines (16 loc) • 720 B
TypeScript
import * as _sinclair_typebox5525 from "@sinclair/typebox";
import { ObjectOptions, Static } from "@sinclair/typebox";
//#region src/shared/bricks/props/geolocation.d.ts
declare function geolocation(opts?: ObjectOptions & {
defaultZoom?: number;
}): _sinclair_typebox5525.TObject<{
lat: _sinclair_typebox5525.TNumber;
lng: _sinclair_typebox5525.TNumber;
address: _sinclair_typebox5525.TString;
tooltip: _sinclair_typebox5525.TOptional<_sinclair_typebox5525.TString>;
zoom: _sinclair_typebox5525.TOptional<_sinclair_typebox5525.TNumber>;
}>;
type GeolocationSettings = Static<ReturnType<typeof geolocation>>;
//#endregion
export { GeolocationSettings, geolocation };
//# sourceMappingURL=geolocation.d.ts.map