mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 02:11:56 +00:00
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
import { Config } from "./config.ts";
|
|
import { List } from "./list.ts";
|
|
import { Value } from "./value.ts";
|
|
import { Variants } from "./variants.ts";
|
|
|
|
export {
|
|
/** @typedef { import("./config.ts").Config } Pet
|
|
*/
|
|
Config,
|
|
List,
|
|
Value,
|
|
Variants,
|
|
};
|