14 lines
237 B
TypeScript
Executable file
14 lines
237 B
TypeScript
Executable file
declare const marker: {
|
|
/**
|
|
Generates a shared symbol.
|
|
|
|
@param subject - The symbol subject.
|
|
|
|
@return A symbol matching the subject.
|
|
*/
|
|
(subject: string): symbol;
|
|
|
|
default: typeof marker;
|
|
};
|
|
|
|
export = marker;
|