aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/terminal.rs
blob: 251d71e983593e4f25624e69496884072ba55cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[derive(Debug)]
pub struct Terminal;

impl Default for Terminal {
    fn default() -> Self {
        Self::new()
    }
}

impl Terminal {
    pub fn new() -> Self {
        todo!()
    }

    pub fn get_width(&self) -> i64 {
        todo!()
    }

    pub fn get_height(&self) -> i64 {
        todo!()
    }
}