This commit contains the following changes:
M .gitignore
A Cargo.lock
A Cargo.toml
A PMOMusic/Cargo.toml
A PMOMusic/src/main.rs
D README.md
A Readme.md
4 lines
310 B
TypeScript
4 lines
310 B
TypeScript
import { Range, Segment } from './types';
|
|
export declare function overwriteSource<T extends Segment<any>>(s: T[], sourceLoc: number | Range, ...newSegments: T[]): T[];
|
|
export declare function overwriteSource<T extends Segment<any>>(s: T[], source: string, sourceLoc: number | Range, ...newSegments: T[]): T[];
|