mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 05:38:25 -04:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
declare function setProto<O extends object, P extends object | null>(
|
|
object: O,
|
|
proto: P,
|
|
): O;
|
|
|
|
declare const x: typeof setProto | null;
|
|
|
|
export = x;
|