| 1 | import { STACKBLITZ_PLAYGROUND_URL } from "../configs" |
| 2 | import template from "./template" |
| 3 | export interface StackBlitzPayloadOptions { |
| 4 | title: string |
| 5 | files: Record<string, string> |
| 6 | openFile: string |
| 7 | } |
| 8 | |
| 9 | export function normalizePayload(payload: StackBlitzPayloadOptions) { |
| 10 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected