libmodulor
Version:
A TypeScript library to create platform-agnostic applications
12 lines (11 loc) • 388 B
TypeScript
import type { TName } from '../base/TBase.js';
import { TString, type TStringConstraints } from '../base/TString.js';
export type GitSSHURL = string;
export declare class TGitSSHURL extends TString<GitSSHURL> {
private static DEFAULT_DOMAIN_NAME;
constructor(constraints?: TStringConstraints & {
domainName: string;
});
tName(): TName;
example(): GitSSHURL;
}