mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
33 lines
457 B
TypeScript
33 lines
457 B
TypeScript
export class Strarray {
|
|
/**
|
|
*
|
|
*
|
|
* @param {Strarray} src
|
|
* @returns {number}
|
|
*
|
|
* @memberof Strarray
|
|
*/
|
|
copy(src: Strarray): number;
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
* @memberof Strarray
|
|
*/
|
|
free(): void;
|
|
/**
|
|
*
|
|
*
|
|
* @type {string[]}
|
|
* @memberof Strarray
|
|
*/
|
|
strings: string[];
|
|
/**
|
|
*
|
|
*
|
|
* @type {number}
|
|
* @memberof Strarray
|
|
*/
|
|
count: number;
|
|
}
|