mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 04:52:23 +08:00
fpdf:annotation of underline, font_style, font_streching (#9327)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
committed by
GitHub
parent
540e0b0aa4
commit
503eab31d7
@@ -20,17 +20,17 @@ class GraphicsStateMixin:
|
||||
@text_color.setter
|
||||
def text_color(self, v: DeviceGray | DeviceRGB) -> None: ...
|
||||
@property
|
||||
def underline(self): ...
|
||||
def underline(self) -> bool: ...
|
||||
@underline.setter
|
||||
def underline(self, v) -> None: ...
|
||||
def underline(self, v: bool) -> None: ...
|
||||
@property
|
||||
def font_style(self): ...
|
||||
def font_style(self) -> str: ...
|
||||
@font_style.setter
|
||||
def font_style(self, v) -> None: ...
|
||||
def font_style(self, v: str) -> None: ...
|
||||
@property
|
||||
def font_stretching(self): ...
|
||||
def font_stretching(self) -> float: ...
|
||||
@font_stretching.setter
|
||||
def font_stretching(self, v) -> None: ...
|
||||
def font_stretching(self, v: float) -> None: ...
|
||||
@property
|
||||
def char_spacing(self): ...
|
||||
@char_spacing.setter
|
||||
|
||||
Reference in New Issue
Block a user