mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +02:00
14 lines
224 B
TypeScript
14 lines
224 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "foo-component",
|
|
templateUrl: "./foo.component.html"
|
|
})
|
|
export class Foo {
|
|
foo: string;
|
|
|
|
constructor() {
|
|
this.foo = "hello";
|
|
}
|
|
}
|