This commit is contained in:
2026-01-26 17:56:52 +07:00
parent 156cdefaba
commit 713efb81b5
2 changed files with 89 additions and 40 deletions

76
dist/places.d.ts vendored
View File

@@ -1,21 +1,65 @@
import BaseClient from 'remotestoragejs/release/types/baseclient';
interface Place {
id: string;
title: string;
lat: number;
lon: number;
geohash: string;
zoom?: number;
url?: string;
osmId?: string;
osmType?: string;
osmTags?: Record<string, string>;
description?: string;
tags?: string[];
createdAt: string;
updatedAt?: string;
import { FromSchema } from 'json-schema-to-ts';
declare const placeSchema: {
readonly type: "object";
readonly properties: {
readonly id: {
readonly type: "string";
};
readonly title: {
readonly type: "string";
};
readonly lat: {
readonly type: "number";
};
readonly lon: {
readonly type: "number";
};
readonly geohash: {
readonly type: "string";
};
readonly zoom: {
readonly type: "number";
};
readonly url: {
readonly type: "string";
};
readonly osmId: {
readonly type: "string";
};
readonly osmType: {
readonly type: "string";
};
readonly osmTags: {
readonly type: "object";
readonly additionalProperties: {
readonly type: "string";
};
};
readonly description: {
readonly type: "string";
};
readonly tags: {
readonly type: "array";
readonly items: {
readonly type: "string";
};
readonly default: readonly [];
};
readonly createdAt: {
readonly type: "string";
readonly format: "date-time";
};
readonly updatedAt: {
readonly type: "string";
readonly format: "date-time";
};
};
readonly required: readonly ["id", "title", "lat", "lon", "geohash", "createdAt"];
};
type Place = FromSchema<typeof placeSchema> & {
[key: string]: any;
}
};
declare const _default: {
name: string;
builder: (privateClient: BaseClient) => {