mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-09 10:22:49 +00:00
11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
import { stringify, SemVer, parse } from 'semver-utils';
|
|
|
|
const version: SemVer = {
|
|
major: '1',
|
|
minor: '0',
|
|
patch: '0',
|
|
};
|
|
|
|
stringify(version); // $ExpectType string
|
|
parse('1.0.0'); // $ExpectType SemVer
|