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