skip to Main Content

Javascript – Interface knowledge

exports interface dev { print( a: string, b: string ):Promise<class bb>; } export function printInstance: dev { return new(class implements dev { public async print( C: string ): Promise<class bb> { } })() } In interface there is two input…

VIEW QUESTION
Back To Top
Search