mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
export class Oid {
|
|
static fromString(str: string): Oid;
|
|
cmp(b: Oid): number;
|
|
cpy(): Oid;
|
|
equal(b: Oid): number;
|
|
iszero(): number;
|
|
ncmp(b: Oid, len: number): number;
|
|
strcmp(str: string): number;
|
|
streq(str: string): number;
|
|
tostrS(): string;
|
|
}
|