chore: Update name

This commit is contained in:
BluJ
2023-05-09 14:10:02 -06:00
parent ba3527fc45
commit 0c187079de
5 changed files with 10 additions and 10 deletions

View File

@@ -28,11 +28,11 @@ function isString(x: unknown): x is string {
export default async function makeFileContentFromOld(
inputData: Promise<any> | any,
{ startSdk = "start-sdk", nested = true } = {},
{ StartSdk = "start-sdk", nested = true } = {},
) {
const outputLines: string[] = []
outputLines.push(`
import { sdk } from "${startSdk}"
import { sdk } from "${StartSdk}"
const {Config, List, Value, Variants} = sdk
`)
const data = await inputData