1
2
3
4
5
6
7
8
9
10
import { extractArgs } from "https://esm.town/v/pomdtr/extractArgs";
import { valToString } from "https://esm.town/v/pomdtr/valToString";
export async function extractValArgs(val: string) {
const code = await valToString(val);
return extractArgs(code) as Promise<{
name: string;
type: string;
}[]>;
}