mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
import TimePeriod from '../types/TimePeriod';
|
|
|
|
interface Experience {
|
|
company: string;
|
|
from: Date;
|
|
to: TimePeriod;
|
|
position: string;
|
|
description: string;
|
|
}
|
|
|
|
export default Experience;
|