Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bnf/atsds_bnf/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*
!index.js
!index.mjs
!index.d.mts
13 changes: 13 additions & 0 deletions bnf/atsds_bnf/index.d.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* Parse Dsp format (human-readable) to Ds format (internal S-expression)
* @param input - The Dsp format string to parse
* @returns The Ds format string
*/
export function parse(input: string): string;

/**
* Unparse Ds format (internal S-expression) to Dsp format (human-readable)
* @param input - The Ds format string to unparse
* @returns The Dsp format string
*/
export function unparse(input: string): string;
Loading