SourceTermAnalysisSystem_vue/node_modules/toml-eslint-parser/lib/internal-utils/index.d.ts
2026-05-15 10:22:44 +08:00

10 lines
254 B
TypeScript

import type { TOMLBare, TOMLQuoted } from "../ast";
/**
* Get the last element from given array
*/
export declare function last<T>(arr: T[]): T | null;
/**
* Node to key name
*/
export declare function toKeyName(node: TOMLBare | TOMLQuoted): string;