mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
10 lines
119 B
TypeScript
10 lines
119 B
TypeScript
export const namedConst = 5;
|
|
|
|
export function namedFn() {
|
|
return 5;
|
|
}
|
|
|
|
export const namedObj = {
|
|
hello: 'world'
|
|
};
|