🧤K
Size: a a a
KA
class MyClass {
title: string;
constructor(title: string) {
this.title = title;
}
}
OS
class MyClass {
title: string;
constructor(title: string) {
this.title = title;
}
}
IK
E
IK
IK
E
IK
IK
export class Company {
id: number;
@Validate(TextLengthMore15, {
message: 'The company name must be longer than 15'
})
@IsNotEmpty()
name: string;
constructor(data?: any) {
plainToClassFromExist(this, data);
}
}DT
http-server -c-1 dist/siteE
export class Company {
id: number;
@Validate(TextLengthMore15, {
message: 'The company name must be longer than 15'
})
@IsNotEmpty()
name: string;
constructor(data?: any) {
plainToClassFromExist(this, data);
}
}E
http-server -c-1 dist/siteAG

client с ангуляр1 “проектами” или чот типо того…., все dist “проектов” подключены к корню сервака express.jsIK

client с ангуляр1 “проектами” или чот типо того…., все dist “проектов” подключены к корню сервака express.jsIK
AG
🧤K
AG