@mountayaapp/helix
v0.20.0
Published
TypeScript library for consuming public-facing types exposed by services powered by helix.go.
Readme
helix.ts
helix.ts is designed for consuming public-facing types exposed by services written with helix.go.
Example
import axios from "axios";
import type { Event } from "@mountayaapp/helix/event";
import type { Response } from "@mountayaapp/helix/integration/rest";
type Metadata = {
event: Event;
};
type Data = {
// ...
};
await axios.get<Response<Metadata, Data>>("/anything");License
Repository licensed under the MIT License.
