mirror of
https://github.com/SwingTheVine/Wplace-BlueMarble.git
synced 2026-05-07 04:19:35 +00:00
12 lines
No EOL
387 B
TypeScript
12 lines
No EOL
387 B
TypeScript
import { TBlueMarbleJSON, TCharityJSON } from "./schemas";
|
|
|
|
// The Context objects contains data to be passed into the inject function that can only be accessed outside of it
|
|
export type Context = {
|
|
HTMLData?: string;
|
|
CSSUrl?: string;
|
|
}
|
|
|
|
|
|
|
|
export type Schemas = TCharityJSON | TBlueMarbleJSON;
|
|
export type SchemaTypeNames = "CHA" | "BM" | "N/A"; // Charity, BlueMarble or unknown
|