libmodulor
Version:
A TypeScript library to create platform-agnostic applications
13 lines (12 loc) • 353 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TObject } from '../base/TObject.js';
import type { Validation } from '../Validation.js';
export type Geolocation = {
lat: number;
lng: number;
};
export declare class TGeolocation extends TObject<Geolocation> {
tName(): TName;
example(): Geolocation;
validate(): Validation;
}