We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9f1ac5 commit d55e7d4Copy full SHA for d55e7d4
src/movie/movie.service.ts
@@ -21,6 +21,12 @@ import { Genre } from 'src/genre/schema/genre.schema';
21
import { User } from 'src/user/schema/user.schema';
22
import { MovieUserLike } from './schema/movie-user-like.schema';
23
24
+type TFunction = (x: number, y: number) => number;
25
+
26
+const fun4: TFunction = function(x) {
27
+ return x;
28
+}
29
30
@Injectable()
31
export class MovieService {
32
0 commit comments