
import { createScalar } from "../utilities";

export const TextScalar = createScalar(
  "text", "character type with variable unlimited length", {
    string : true,
    number : String,
    boolean: String,
  }
);
