mirror of
https://github.com/actions/setup-node.git
synced 2025-04-21 17:01:00 +00:00
10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
|
|
export interface URNComponents extends URIComponents {
|
|
nid?: string;
|
|
nss?: string;
|
|
}
|
|
export interface URNOptions extends URIOptions {
|
|
nid?: string;
|
|
}
|
|
declare const handler: URISchemeHandler<URNComponents, URNOptions>;
|
|
export default handler;
|