@tokens-studio/sdk
Version:
The official SDK for Tokens Studio
11 lines • 338 B
JavaScript
let API_KEY = process.env.TOKENS_STUDIO_API_KEY;
export const getKey = () => {
return API_KEY;
};
// we only set the API key via run-command terminal
// and we don't test this because it's a pain to test terminal interaction
/* c8 ignore next 3 */
export const setKey = (v) => {
API_KEY = v;
};
//# sourceMappingURL=api-key.js.map