astro-ghostcms/.pnpm-store/v3/files/32/32723cbd0d7a6159eccda5d8132...

6 lines
226 B
Plaintext

import type { Token } from "../parser/tokenizer";
/**
* Get all identifier names in the code, in order, including duplicates.
*/
export default function getIdentifierNames(code: string, tokens: Array<Token>): Array<string>;